יש לי עמודה במסד שיש בה הרהב מספרים.
איך אני יכול לעשות ממוצא של כל המספרים שמה?
איך אני יכול לעשות ממוצא של כל המספרים שמה?
6 תשובות
התקנתי WAMP + וורדפרס.
כשאני נכנס למסך: http://localhost/phpmyadmin/
אני מקבל את ההודעה הבאה:
The website declined to show this webpage
HTTP 403
Most likely causes:
•This website requires you to log in.
What you can try:
Go back to the previous page.
More information
This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.
For more information about HTTP errors, see Help.
אני לא מצליח לעשות את זה עשיתי דבר כזה:
<?php
$hmt = mysql_query("SELECT AVG(hmt) FROM `secer`") or die(mysql_error());
$c = mysql_fetch_array($hmt) or die(mysql_error());
echo $c['$hmt'];
?>
$hmt = mysql_query("SELECT AVG(hmt) FROM `secer`") or die(mysql_error());
$c = mysql_fetch_array($hmt) or die(mysql_error());
echo $c['$hmt'];
?>
זה לא מחזיר לי שום שגיאה
<?php
$result = mysql_query("SELECT AVG(`row`) FROM `table`") or die(mysql_error());
$average = mysql_fetch_array($result) or die(mysql_error());
print_r($average);
$result = mysql_query("SELECT AVG(`row`) FROM `table`") or die(mysql_error());
$average = mysql_fetch_array($result) or die(mysql_error());
print_r($average);